home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / programs / electronic / rlab / !RLaB / examples / factest < prev    next >
Encoding:
Text File  |  1994-09-19  |  134 b   |  12 lines

  1. factest = function ( n )
  2. {
  3.   i = 0; x = 50;
  4.   while( i < n )
  5.   {
  6.     fac( x );
  7.     i++;
  8.   }
  9.   printf("factest done, n = %i\n", n);
  10. }
  11.  
  12.